home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 026a / strdct.zip / README.TXT < prev    next >
Text File  |  1991-01-24  |  1KB  |  29 lines

  1. Erik McBeth  1991.01.24
  2.  
  3. These BIN files allow you to do "true" dictionary sort while
  4. inside dBASE IV.  Dictionary sorts places numbers at the end of the
  5. file and lower case letters first (the reverse order of ASCII). 
  6. The various bin files are called via the CALL() which can be
  7. used in the INDEX ON statement.  Run the STRDCT.PRG to see
  8. a demonstration of the various ways to sort the data.  If you
  9. want to use the bin files it is important that your index 
  10. expression includes a  + "" or the bin files will permanently
  11. encrypt your data - follow the examples and no problem.
  12.  
  13. File list:
  14.  
  15. GETREGS  ASM     /* for Microsoft C compiler, use Turbo and forget this */
  16. STRDCT   DBF     /* test dbf */  
  17. STRDCT   H       /* header file */
  18. STRDCT   MDX     /* test mdx */  
  19. STRDCT   PRG     /* test program */
  20. STRDCTCA BIN     /* case sensitive ascending sort */
  21. STRDCTCA C      
  22. STRDCTCD BIN     /* case sensitive descending sort */
  23. STRDCTCD C      
  24. STRDCTIA BIN     /* case insensitive ascending sort */
  25. STRDCTIA C      
  26. STRDCTID BIN     /* case insensitive descending sort */
  27. STRDCTID C      
  28.  
  29.